SetUnitsInteger Subroutine

private subroutine SetUnitsInteger(units, layer)

set the units of a integer grid

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: units
type(grid_integer), intent(inout) :: layer

Source Code

SUBROUTINE SetUnitsInteger &
!
(units, layer)

IMPLICIT NONE

!Arguments with intent(in):
CHARACTER (LEN = *), INTENT(IN) :: units

!Arguments with intent(out):
TYPE(grid_integer), INTENT(INOUT) :: layer

!------------end of declaration------------------------------------------------

layer % units = units

END SUBROUTINE SetUnitsInteger